Skip to main content
Glama

Karakeep MCP server

by karakeep-app
page.tsx811 B
import { redirect } from "next/navigation"; import InviteAcceptForm from "@/components/invite/InviteAcceptForm"; import KarakeepLogo from "@/components/KarakeepIcon"; import { getServerAuthSession } from "@/server/auth"; interface InvitePageProps { params: { token: string; }; } export default async function InvitePage({ params }: InvitePageProps) { const session = await getServerAuthSession(); if (session) { redirect("/"); } return ( <div className="flex min-h-screen items-center justify-center bg-gray-50 px-4 py-12 sm:px-6 lg:px-8"> <div className="w-full max-w-md space-y-8"> <div className="flex items-center justify-center"> <KarakeepLogo height={80} /> </div> <InviteAcceptForm token={params.token} /> </div> </div> ); }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/karakeep-app/karakeep'

If you have feedback or need assistance with the MCP directory API, please join our Discord server